:root{
  --empresa-navy:#061b49;
  --empresa-blue:#006dff;
  --empresa-blue-dark:#004ed8;
  --empresa-light:#f4f9ff;
  --empresa-text:#53617d;
  --empresa-border:rgba(0,78,180,.14);
  --empresa-shadow:0 24px 54px rgba(0,42,105,.12);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Poppins", sans-serif;
}

body{
  background:#f7fbff;
  color:var(--empresa-navy);
}

.empresa-page{
  width:100%;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(0,109,255,.10), transparent 28%),
    radial-gradient(circle at 94% 12%, rgba(0,109,255,.12), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.empresa-hero{
  position:relative;
  overflow:hidden;
  min-height:490px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 36%, rgba(255,255,255,.72) 48%, rgba(255,255,255,.98) 62%, #ffffff 100%),
    url('images/banner-empresas.png') left top / auto 100% no-repeat,
    linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
}

.empresa-hero::before{
  content:"";
  position:absolute;
  inset:82px 0 0 0;
  background-image:radial-gradient(rgba(0,109,255,.14) 1px, transparent 1px);
  background-size:14px 14px;
  opacity:.10;
  mask-image:linear-gradient(90deg, transparent 0%, transparent 55%, #000 72%, #000 100%);
  pointer-events:none;
}

.empresa-hero::after{
  content:"";
  position:absolute;
  right:-90px;
  top:-150px;
  width:600px;
  height:600px;
  border-radius:50%;
  border:1px solid rgba(0,109,255,.12);
  box-shadow:
    -60px 80px 0 rgba(0,109,255,.030),
    -120px 150px 0 rgba(0,109,255,.020);
  pointer-events:none;
}

.empresa-hero-top{
  position:relative;
  z-index:3;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 20px;
  background:linear-gradient(180deg, #00317a 0%, #001f5a 100%);
  box-shadow:0 10px 30px rgba(0,30,90,.16);
}

.empresa-hero-top h1{
  margin:0;
  color:#fff;
  font-size:34px;
  line-height:1.1;
  font-weight:900;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.5px;
  text-shadow:0 4px 14px rgba(0,0,0,.22);
}

.empresa-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1320px;
  min-height:408px;
  margin:0 auto;
  display:grid;
  grid-template-columns:48% 52%;
  align-items:center;
  padding:0 36px;
}

.empresa-hero-spacer{
  min-height:408px;
}

.empresa-hero-text{
  padding:42px 0 36px 36px;
}

.empresa-pill{
  width:max-content;
  max-width:100%;
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  padding:0 18px;
  border:1px solid rgba(0,93,255,.35);
  border-radius:999px;
  background:rgba(255,255,255,.82);
  color:#0054d6;
  font-size:15px;
  line-height:1;
  font-weight:600;
}

.empresa-pill svg{
  width:22px;
  height:22px;
}

.empresa-hero-text h2{
  margin:0 0 16px;
  color:var(--empresa-navy);
  font-size:48px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-1.6px;
  text-transform:uppercase;
  text-shadow:0 3px 0 rgba(255,255,255,.70);
}

.empresa-hero-text > p{
  max-width:650px;
  margin:0;
  color:#17345f;
  font-size:20px;
  line-height:1.45;
  font-weight:500;
}

.empresa-benefits{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:42px;
}

.empresa-benefit{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  align-items:center;
  min-height:54px;
  padding-right:16px;
  border-right:1px solid rgba(0,72,170,.22);
}

.empresa-benefit:last-child{
  border-right:0;
}

.empresa-benefit svg{
  width:34px;
  height:34px;
  color:#0054d6;
}

.empresa-benefit span{
  color:#17345f;
  font-size:14px;
  line-height:1.25;
  font-weight:600;
}

@media (max-width:1100px){
  .empresa-hero{
    background:
      linear-gradient(90deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.10) 34%, rgba(255,255,255,.82) 50%, rgba(255,255,255,.98) 66%, #ffffff 100%),
      url('../images/banners/banco-empregos-empresa-hero.png') left center / auto 100% no-repeat,
      linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
  }

  .empresa-hero-content{
    grid-template-columns:42% 58%;
    padding:0 24px;
  }

  .empresa-hero-text{
    padding-left:28px;
  }

  .empresa-hero-text h2{
    font-size:40px;
  }

  .empresa-benefits{
    grid-template-columns:1fr;
    gap:14px;
    margin-top:28px;
  }

  .empresa-benefit{
    border-right:0;
    padding-right:0;
  }
}

@media (max-width:760px){
  .empresa-hero{
    min-height:auto;
    background:
      linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.10) 40%, rgba(255,255,255,.95) 62%, #ffffff 100%),
      url('../images/banners/banco-empregos-empresa-hero.png') center top / auto 300px no-repeat,
      linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
  }

  .empresa-hero-top{
    min-height:68px;
  }

  .empresa-hero-top h1{
    font-size:24px;
  }

  .empresa-hero-content{
    grid-template-columns:1fr;
    min-height:auto;
    padding:300px 18px 30px;
  }

  .empresa-hero-spacer{
    display:none;
  }

  .empresa-hero-text{
    padding:28px 0 0;
    text-align:left;
  }

  .empresa-pill{
    min-height:36px;
    font-size:13px;
    padding:0 14px;
  }

  .empresa-hero-text h2{
    font-size:32px;
  }

  .empresa-hero-text > p{
    font-size:16px;
  }

  .empresa-benefits{
    margin-top:24px;
  }
}

@media (max-width:480px){
  .empresa-hero{
    background:
      linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.16) 36%, rgba(255,255,255,.96) 62%, #ffffff 100%),
      url('../images/banners/banco-empregos-empresa-hero.png') center top / auto 255px no-repeat,
      linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
  }

  .empresa-hero-top h1{
    font-size:20px;
  }

  .empresa-hero-content{
    padding-top:255px;
  }

  .empresa-hero-text h2{
    font-size:27px;
  }
}
.empresa-benefits{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:42px;
}

.empresa-benefit{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  align-items:center;
  min-height:54px;
  padding-right:16px;
  border-right:1px solid rgba(0,72,170,.22);
}

.empresa-benefit:last-child{
  border-right:0;
}

.empresa-benefit svg{
  width:34px;
  height:34px;
  color:#0054d6;
}

.empresa-benefit span{
  color:#17345f;
  font-size:14px;
  line-height:1.25;
  font-weight:600;
}

@media (max-width:1100px){
  .empresa-hero{
    background:
      linear-gradient(90deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.42) 40%, rgba(255,255,255,.94) 62%, rgba(255,255,255,.98) 100%),
      url('../images/banners/banco-empregos-empresa-hero.png') left center / auto 100% no-repeat,
      linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
  }

  .empresa-hero-content{
    grid-template-columns:42% 58%;
    padding:0 24px;
  }

  .empresa-hero-text h2{
    font-size:40px;
  }

  .empresa-benefits{
    grid-template-columns:1fr;
    gap:14px;
    margin-top:28px;
  }

  .empresa-benefit{
    border-right:0;
    padding-right:0;
  }
}

@media (max-width:760px){
  .empresa-hero{
    min-height:auto;
    background:
      linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.16) 38%, rgba(255,255,255,.94) 58%, #ffffff 100%),
      url('/images/banco-empregos-empresa-hero.png') center top / auto 300px no-repeat,
      linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
  }

  .empresa-hero-top{
    min-height:68px;
  }

  .empresa-hero-top h1{
    font-size:24px;
  }

  .empresa-hero-content{
    grid-template-columns:1fr;
    min-height:auto;
    padding:300px 18px 30px;
  }

  .empresa-hero-spacer{
    display:none;
  }

  .empresa-hero-text{
    padding:28px 0 0;
    text-align:left;
  }

  .empresa-pill{
    min-height:36px;
    font-size:13px;
    padding:0 14px;
  }

  .empresa-hero-text h2{
    font-size:32px;
  }

  .empresa-hero-text > p{
    font-size:16px;
  }

  .empresa-benefits{
    margin-top:24px;
  }
}

@media (max-width:480px){
  .empresa-hero{
    background:
      linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.22) 34%, rgba(255,255,255,.96) 58%, #ffffff 100%),
      url('../images/banners/banco-empregos-empresa-hero.png') center top / auto 255px no-repeat,
      linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
  }

  .empresa-hero-top h1{
    font-size:20px;
  }

  .empresa-hero-content{
    padding-top:255px;
  }

  .empresa-hero-text h2{
    font-size:27px;
  }
}

.empresa-pill{
  width:max-content;
  max-width:100%;
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  padding:0 18px;
  border:1px solid rgba(0,93,255,.35);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#0054d6;
  font-size:15px;
  line-height:1;
  font-weight:600;
}

.empresa-pill svg{
  width:22px;
  height:22px;
}

.empresa-hero-text h2{
  margin:0 0 16px;
  color:var(--empresa-navy);
  font-size:48px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-1.6px;
  text-transform:uppercase;
  text-shadow:0 3px 0 rgba(255,255,255,.70);
}

.empresa-hero-text > p{
  max-width:650px;
  margin:0;
  color:#17345f;
  font-size:20px;
  line-height:1.45;
  font-weight:500;
}

.empresa-benefits{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:42px;
}

.empresa-benefit{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  align-items:center;
  min-height:54px;
  padding-right:16px;
  border-right:1px solid rgba(0,72,170,.22);
}

.empresa-benefit:last-child{
  border-right:0;
}

.empresa-benefit svg{
  width:34px;
  height:34px;
  color:#0054d6;
}

.empresa-benefit span{
  color:#17345f;
  font-size:14px;
  line-height:1.25;
  font-weight:600;
}

.empresa-actions{
  position:relative;
  z-index:4;
  padding:32px 28px 30px;
  background:#fff;
}

.empresa-actions-grid{
  width:100%;
  max-width:1160px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}

.empresa-action-card{
  min-height:170px;
  display:grid;
  grid-template-columns:112px 1fr 58px;
  align-items:center;
  gap:18px;
  padding:28px 30px;
  border-radius:10px;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, filter .2s ease;
}

.empresa-action-card:hover{
  transform:translateY(-3px);
  filter:brightness(1.02);
}

.empresa-action-card-primary{
  background:
    radial-gradient(circle at 94% 50%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(135deg, #0048b8 0%, #00399b 100%);
  color:#fff;
  box-shadow:0 18px 42px rgba(0,68,180,.24);
}

.empresa-action-card-light{
  background: linear-gradient(135deg, #6dabe3 0%, #dceeff 100%);
  color:var(--empresa-navy);
  box-shadow:0 18px 42px rgba(0,54,130,.10);
}

.empresa-action-icon{
  width:94px;
  height:94px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  box-shadow:0 12px 26px rgba(0,35,90,.14);
}

.empresa-action-icon svg{
  width:48px;
  height:48px;
  color:#0054d6;
}

.empresa-action-card h3{
  margin:0 0 8px;
  font-size:27px;
  line-height:1.1;
  font-weight:900;
}

.empresa-action-card p{
  margin:0;
  max-width:410px;
  font-size:16px;
  line-height:1.45;
  font-weight:500;
}

.empresa-action-card-primary p{
  color:rgba(255,255,255,.94);
}

.empresa-action-card-light p{
  color:#17345f;
}

.empresa-action-arrow{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:#0054d6;
  font-size:38px;
  line-height:1;
  box-shadow:0 10px 24px rgba(0,35,90,.14);
}

.faq-section{
  padding:0 28px 54px;
  background:#fff;
}

.faq-card{
  width:100%;
  max-width:1160px;
  margin:0 auto;
  padding:28px 30px 24px;
  border:1px solid rgba(0,65,150,.13);
  border-radius:10px;
  background:#fff;
  box-shadow:0 18px 42px rgba(0,42,105,.08);
}

.faq-title{
  margin:0;
  color:var(--empresa-navy);
  font-size:27px;
  line-height:1.2;
  font-weight:900;
}

.faq-subtitle{
  margin:8px 0 20px;
  color:#52617f;
  font-size:14px;
  line-height:1.45;
  font-weight:500;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.faq-item{
  border:1px solid rgba(0,65,150,.13);
  border-radius:8px;
  background:#fff;
  overflow:hidden;
}

.faq-q{
  position:relative;
  list-style:none;
  cursor:pointer;
  padding:13px 48px 13px 18px;
  color:var(--empresa-navy);
  font-size:14px;
  line-height:1.35;
  font-weight:800;
}

.faq-q::-webkit-details-marker{
  display:none;
}

.faq-q::after{
  content:"+";
  position:absolute;
  right:17px;
  top:50%;
  transform:translateY(-50%);
  color:#0054d6;
  font-size:24px;
  line-height:1;
  font-weight:800;
}

.faq-item[open] .faq-q::after{
  content:"−";
}

.faq-a{
  padding:0 18px 16px;
  color:#52617f;
  font-size:14px;
  line-height:1.55;
  font-weight:500;
}

.faq-a p + p{
  margin-top:10px;
}

@media (max-width:1100px){
  .empresa-hero-content{
    grid-template-columns:42% 58%;
    padding:0 24px;
  }

  .empresa-hero-text h2{
    font-size:40px;
  }

  .empresa-benefits{
    grid-template-columns:1fr;
    gap:14px;
    margin-top:28px;
  }

  .empresa-benefit{
    border-right:0;
    padding-right:0;
  }

  .empresa-actions-grid{
    grid-template-columns:1fr;
    max-width:760px;
  }
}

@media (max-width:760px){
  .empresa-hero{
    min-height:auto;
  }

  .empresa-hero-top{
    min-height:68px;
  }

  .empresa-hero-top h1{
    font-size:24px;
  }

  .empresa-hero-content{
    grid-template-columns:1fr;
    padding:0 18px 30px;
  }

  .empresa-hero-image{
    order:1;
    min-height:260px;
    margin:0 -18px;
  }

  .empresa-hero-image img{
    max-width:none;
    width:100%;
    min-height:260px;
    max-height:300px;
    object-fit:cover;
  }

  .empresa-hero-text{
    order:2;
    padding:28px 0 0;
    text-align:left;
  }

  .empresa-pill{
    min-height:36px;
    font-size:13px;
    padding:0 14px;
  }

  .empresa-hero-text h2{
    font-size:32px;
  }

  .empresa-hero-text > p{
    font-size:16px;
  }

  .empresa-benefits{
    margin-top:24px;
  }

  .empresa-actions{
    padding:26px 14px;
  }

  .empresa-action-card{
    min-height:auto;
    grid-template-columns:72px 1fr 42px;
    gap:14px;
    padding:22px 18px;
  }

  .empresa-action-icon{
    width:64px;
    height:64px;
  }

  .empresa-action-icon svg{
    width:34px;
    height:34px;
  }

  .empresa-action-card h3{
    font-size:22px;
  }

  .empresa-action-card p{
    font-size:14px;
  }

  .empresa-action-arrow{
    width:40px;
    height:40px;
    font-size:32px;
  }

  .faq-section{
    padding:0 14px 38px;
  }

  .faq-card{
    padding:24px 16px 20px;
  }

  .faq-title{
    font-size:22px;
  }
}

@media (max-width:480px){
  .empresa-hero-top h1{
    font-size:20px;
  }

  .empresa-hero-text h2{
    font-size:27px;
  }

  .empresa-action-card{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }

  .empresa-action-card p{
    max-width:100%;
  }

  .faq-q{
    font-size:13px;
  }
}